home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / demos / r-z / stormc-demo / include / math.h < prev    next >
C/C++ Source or Header  |  1996-01-09  |  1KB  |  55 lines

  1. #ifndef _INCLUDE_MATH_H
  2. #define _INCLUDE_MATH_H
  3.  
  4. /*
  5. **  $VER: math.h 10.1 (19.7.95)
  6. **  Includes Release 40.15
  7. **
  8. **  '(C) Copyright 1995/96 Haage & Partner Computer GmbH'
  9. **     All Rights Reserved
  10. */
  11.  
  12. #ifdef __cplusplus
  13.   extern "C" {
  14. #endif
  15.  
  16. char *inttostr(int, char[], short);
  17. char *uinttostr(unsigned, char[], short);
  18. char *llongtostr(long long, char[], short);
  19. char *ullongtostr(unsigned long long, char[], short);
  20. char *floattostr(float, char[], short);
  21. char *doubletostr(double, char[], short);
  22.  
  23. double sin(double);
  24. double cos(double);
  25. double tan(double);
  26. double asin(double);
  27. double acos(double);
  28. double atan(double);
  29. double atan2(double, double);
  30. double sinh(double);
  31. double cosh(double);
  32. double tanh(double);
  33. double exp(double);
  34. double log(double);
  35. double log10(double);
  36. double pow(double,double);
  37. double sqrt(double);
  38. double ceil(double);
  39. double floor(double);
  40. double fabs(double);
  41. double ldexp(double,int);
  42. double frexp(double,int*);
  43. double modf(double,double*);
  44. double fmod(double,double);
  45. double pwr10(int);
  46. int expo10(double);
  47. float fpwr10(int);
  48.  
  49. #ifdef __cplusplus
  50. }
  51. #endif
  52.  
  53. #endif
  54.  
  55.